SobiPro 1.0.6, Joomla 1.6-2.5:
	1. Open /components/com_sobipro/lib/views/entry.php
		Near the bottom of the file there is the following line

			return $data;
		
		It is the final statement in the entryData($getFields = true) function. Just before it insert the following code:
	
			#SEOLinks BOM
			if (JPluginHelper::importPlugin('content','seolinks',true)) {
				$seoparams = new JRegistry();
				$seorow = new StdClass();
				$seorow->text = $data['entry']['_data']['fields']['field_description']['_data']['data']['_data'];
				$seorow->id = 0;
				JDispatcher::getInstance()->trigger('onContentBeforeDisplay', array('com_sobipro.entry', $seorow, $seoparams));
				$data['entry']['_data']['fields']['field_description']['_data']['data']['_data'] = $seorow->text;
			}
			#SEOLinks EOM




Sobi2 2.9.4.1, Joomla 1.5:
	1. Open /components/com_sobi2/sobi2.entry.php
		Find the following row:

			$sobi2Details->showSobi($sobi2Id, $mySobi, $itemData, $waySearchLink,$catid, $fieldsObjects);

		Just above it insert the following code:
	
			#SEOLinks BOM
                        if (JPluginHelper::importPlugin('content','seolinks',true)) {
				$seoparams = new JParameter('');
				$seorow = new StdClass();
				$seorow->text = $itemData['field_description'];
				$seorow->id = 0;
				JDispatcher::getInstance()->trigger('onPrepareContent', array($seorow, $seoparams));
				$itemData['field_description'] = $seorow->text;
                        }
			#SEOLinks EOM